home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 August (Alt) / CHIP 2005-08.1.iso / program / guvenlik / syslinux-3.07.exe / memdisk / conio.h < prev    next >
Encoding:
C/C++ Source or Header  |  2004-12-14  |  893 b   |  33 lines

  1. #ident "$Id: conio.h,v 1.5 2004/12/14 22:46:25 hpa Exp $"
  2. /* ----------------------------------------------------------------------- *
  3.  *   
  4.  *   Copyright 2001 H. Peter Anvin - All Rights Reserved
  5.  *
  6.  *   This program is free software; you can redistribute it and/or modify
  7.  *   it under the terms of the GNU General Public License as published by
  8.  *   the Free Software Foundation, Inc., 53 Temple Place Ste 330,
  9.  *   Boston MA 02111-1307, USA; either version 2 of the License, or
  10.  *   (at your option) any later version; incorporated herein by reference.
  11.  *
  12.  * ----------------------------------------------------------------------- */
  13.  
  14. /*
  15.  * conio.h
  16.  *
  17.  * Limited console I/O
  18.  */
  19.  
  20. #ifndef CONIO_H
  21. #define CONIO_H
  22.  
  23. #include <stdint.h>
  24. #include <stddef.h>
  25. #include <stdarg.h>
  26.  
  27. int putchar(int);
  28. int puts(const char *);
  29. int printf(const char *, ...);
  30. unsigned int atou(const char *);
  31.  
  32. #endif
  33.